home *** CD-ROM | disk | FTP | other *** search
- // Copyright (c) 1994, University of Kansas, All Rights Reserved
- //
- // Class: TPasswordInputLine
- // Include File: tpasswor.h
- // Purpose: Do the same thing as an input line, just don't allow
- // user to see the input!
- // Remarks/Portability/Dependencies/Restrictions:
- // Revision History:
- // 04-22-94 created
- #include"tpasswor.h"
-
- TPasswordInputLine::TPasswordInputLine(const TRect& TR_bounds, int i_maxlen)
- : TInputLine(TR_bounds, i_maxlen) {
- // Purpose: Construct the password input line.
- // Arguments: TR_bounds This size of the line.
- // i_maxlen The maximum size of the password.
- // Return Value: none
- // Remarks/Portability/Dependencies/Restrictions:
- // Really just made to properly call the TInputLine constructor.
- // Revision History:
- // 04-22-94 created
- }